net/http.http2Framer.wbuf (field)

32 uses

	net/http (current package)
		h2_bundle.go#L1696: 	wbuf []byte
		h2_bundle.go#L1749: 	f.wbuf = append(f.wbuf[:0],
		h2_bundle.go#L1764: 	length := len(f.wbuf) - http2frameHeaderLen
		h2_bundle.go#L1768: 	_ = append(f.wbuf[:0],
		h2_bundle.go#L1776: 	n, err := f.w.Write(f.wbuf)
		h2_bundle.go#L1777: 	if err == nil && n != len(f.wbuf) {
		h2_bundle.go#L1792: 	f.debugFramerBuf.Write(f.wbuf)
		h2_bundle.go#L1801: func (f *http2Framer) writeByte(v byte) { f.wbuf = append(f.wbuf, v) }
		h2_bundle.go#L1803: func (f *http2Framer) writeBytes(v []byte) { f.wbuf = append(f.wbuf, v...) }
		h2_bundle.go#L1805: func (f *http2Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(v>>8), byte(v)) }
		h2_bundle.go#L1808: 	f.wbuf = append(f.wbuf, byte(v>>24), byte(v>>16), byte(v>>8), byte(v))
		h2_bundle.go#L2110: 		f.wbuf = append(f.wbuf, byte(len(pad)))
		h2_bundle.go#L2112: 	f.wbuf = append(f.wbuf, data...)
		h2_bundle.go#L2113: 	f.wbuf = append(f.wbuf, pad...)
		h2_bundle.go#L2540: 	f.wbuf = append(f.wbuf, p.BlockFragment...)
		h2_bundle.go#L2541: 	f.wbuf = append(f.wbuf, http2padZeros[:p.PadLength]...)
		h2_bundle.go#L2684: 	f.wbuf = append(f.wbuf, headerBlockFragment...)
		h2_bundle.go#L2793: 	f.wbuf = append(f.wbuf, p.BlockFragment...)
		h2_bundle.go#L2794: 	f.wbuf = append(f.wbuf, http2padZeros[:p.PadLength]...)